Dashboard Temp Share Shortlinks Frames API

HTMLify

index.html
Views: 465 | Author: cody
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="UTF-8" />
		<meta name="viewport" content="width=device-width, initial-scale=1.0" />
		<title>Custom Captcha Generator</title>
		<link rel="stylesheet" href="style.css" />
		<link
			rel="shortcut icon"
			href="assets/favicon.ico"
			type="image/x-icon"
		/>
		<link
			rel="stylesheet"
			href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
		/>
	</head>
	<body>
		<div class="cover">
			<header>CAPTCHA GENERATOR</header>
			<div class="captcha-box">
				<div class="captcha-img">
					<img src="assets/bg6.png" alt="Captch Background" />
					<span class="captcha"></span>
				</div>
				<button class="reload">
					<i class="fas fa-redo-alt"></i>
				</button>
			</div>
			<form action="#" class="input-text">
				<input
					type="text"
					placeholder="Enter captcha"
					maxlength="6"
					spellcheck="false"
					required
				/>
				<button class="verify">Check</button>
			</form>
			<div class="result"></div>
		</div>

		<script src="script.js"></script>
	</body>
</html>